-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ETQ instructeur si j'utilise un filtre de type choix, les valeurs possibles s'affichent dans un select #9560
ETQ instructeur si j'utilise un filtre de type choix, les valeurs possibles s'affichent dans un select #9560
Conversation
d00c532
to
99199e9
Compare
99199e9
to
cde8c61
Compare
app/models/type_de_champ.rb
Outdated
@@ -462,7 +480,7 @@ def current_section_level(revision) | |||
end | |||
|
|||
def self.filter_hash_type(type_champ) | |||
if type_champ.in?([TypeDeChamp.type_champs.fetch(:departements), TypeDeChamp.type_champs.fetch(:regions)]) | |||
if type_champ.in?([TypeDeChamp.type_champs.fetch(:departements), TypeDeChamp.type_champs.fetch(:regions)]) || is_choice_type_from(type_champ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai l'impression qu'on peut déclarer departements
et regions
comme choice type
, non ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le "type" est utilisé pour organiser les champs dans la création du formulaire, j'ai donc pas touché aux catégories. "Region" et department" sont rangés dans le type "localisation". Du coup je ne sais pas si c'est un bon nommage ou une bonne idée que de les ajouter dans cette methode de type "choix" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je crois qu'on ne parle pas de la même chose. Je parle de la méthode que tu viens d'ajouter choice_type
.
Co-authored-by: Paul Chavard <paul.chavard@beta.gouv.fr>
Co-authored-by: Paul Chavard <paul.chavard@beta.gouv.fr>
Co-authored-by: Paul Chavard <paul.chavard@beta.gouv.fr>
closes #9515
On affiche dorénavant un
<select>
avec les options proposées, plutôt qu'un champ libre pour les champs de type "choix".